M

MoMA API

Interactive Documentation

No Token
GET /api/artists/{artist_id}

Get Artist by ID

Retrieve a single artist by artist identifier.

Parameters

Name Type Required Location Description
artist_id integer Yes path Artist identifier.
token string Yes query MoMA API token.

Try It

Client-side request execution

Live URL

https://api.moma.org/api/artists/4609

token *

Not set

Example Request

GET /api/artists/4609?token=YOUR_TOKEN

Example Response

{
  "source": "MoMA TMS API",
  "language": "en",
  "resultsCount": 1,
  "artists": [
    {
      "artistID": 4609,
      "displayName": "Pablo Picasso",
      "displayDate": "Spanish, 1881–1973"
    }
  ]
}